Conditions | 4 |
Paths | 6 |
Total Lines | 18 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | /* global dataFlyntFeatureGoogleAnalytics, Cookies */ |
||
15 | $gaOptoutLinks.on('click', function (e) { |
||
16 | e.preventDefault() |
||
17 | let confirmOptout = false |
||
|
|||
18 | |||
19 | if (data.confirm) { |
||
20 | confirmOptout = window.confirm(data.confirm) |
||
21 | } else { |
||
22 | confirmOptout = true |
||
23 | } |
||
24 | |||
25 | if (confirmOptout) { |
||
26 | window['ga-disable-' + data.gaId] = true |
||
27 | if (data.success) { |
||
28 | window.alert(data.success) |
||
29 | } |
||
30 | setOptoutCookie() |
||
31 | } |
||
32 | }) |
||
33 | } |
||
43 |